home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / mk_fp.h < prev    next >
Text File  |  1990-09-22  |  152b  |  7 lines

  1. /* mk_fp.h: Macro to form a far pointer */
  2.  
  3. #define MK_FP(seg, off) ((void far *) \
  4.         (((unsigned long) (seg) << 16) + (unsigned) (off)))
  5.  
  6.  
  7.